provider Events DELETE /api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/issues/
@utdk/sentry /api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/issues/
Bulk Remove a List of Issues
Permanently remove the given issues. The list of issues to modify is given through the `id` query parameter. It is repeated for each issue that should be removed. Only queries by 'id' are accepted. If any IDs are out of scope this operation will succeed without any data mutation.
organization_id_or_slug path required
The ID or slug of the organization the issues belong to.
string
project_id_or_slug path required
The ID or slug of the project the issues belong to.
string
id query
A list of IDs of the issues to be removed. This parameter shall be repeated for each issue, e.g. `?id=1&id=2&id=3`. If this parameter is not provided, it will attempt to remove the first 1000 issues.
integer

Try it

Authentication
Configure credentials for API Reference
Gateway
The gateway proxies requests and injects credentials server-side. Configure credentials above, then enter your gateway URL.

Saved automatically to browser storage.

bulkRemoveAListOfIssues
DELETE/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/issues/
Permanently remove the given issues. The list of issues to modify is given through the `id` query parameter. It is repeated for each issue that should be removed. Only queries by 'id' are accepted. If any IDs are out of scope this operation will succeed without any data mutation.

Parameters

required

The ID or slug of the organization the issues belong to.

required

The ID or slug of the project the issues belong to.

A list of IDs of the issues to be removed. This parameter shall be repeated for each issue, e.g. `?id=1&id=2&id=3`. If this parameter is not provided, it will attempt to remove the first 1000 issues.

Enter a gateway URL above to enable sending.

Code snippet
Updates live as you fill in the form above.

TypeScript

import sentry from '@utdk/sentry';

await sentry.bulkRemoveAListOfIssues()